Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add diff mode #617

Open
wants to merge 14 commits into
base: main
Choose a base branch
from
Open

feat: add diff mode #617

wants to merge 14 commits into from

Conversation

riccardoperra
Copy link
Owner

No description provided.

@riccardoperra riccardoperra linked an issue Jan 3, 2024 that may be closed by this pull request
Copy link

codesandbox bot commented Jan 3, 2024

Review or Edit in CodeSandbox

Open the branch in Web EditorVS CodeInsiders

Open Preview

Copy link

changeset-bot bot commented Jan 3, 2024

⚠️ No Changeset found

Latest commit: dd119a6

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Copy link
Contributor

github-actions bot commented Jan 3, 2024

Deploy preview for codeimage-highlight-dev ready!

✅ Preview
https://codeimage-highlight-q33ixp8fu-riccardo-perras-projects.vercel.app
https://codeimage-highlight-pr-617.vercel.app

Built with commit dd119a6.
This pull request is being automatically deployed with vercel-action

Copy link
Contributor

github-actions bot commented Jan 3, 2024

Deploy preview for codeimage-website-dev ready!

✅ Preview
https://codeimage-website-nxvyrrhvg-riccardo-perras-projects.vercel.app
https://codeimage-website-pr-617.vercel.app

Built with commit dd119a6.
This pull request is being automatically deployed with vercel-action

Copy link
Contributor

github-actions bot commented Jan 3, 2024

Deploy preview for codeimage ready!

✅ Preview
https://codeimage-boykd9oja-riccardo-perras-projects.vercel.app
https://codeimage-app-pr-617.vercel.app

Built with commit dd119a6.
This pull request is being automatically deployed with vercel-action

@@ -245,6 +278,7 @@ export function createEditorsStore() {
languageId: editor.languageId,
id: editor.id,
code: editor.code,
metadata: editor.metadata,
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

must be added in BE in order to don't break ts

Comment on lines +126 to +128
): DecorationSet {
console.log('from json');
const builder = new RangeSetBuilder<Decoration>();
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
): DecorationSet {
console.log('from json');
const builder = new RangeSetBuilder<Decoration>();
): DecorationSet {
const builder = new RangeSetBuilder<Decoration>();

Copy link

stale bot commented Mar 4, 2024

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

@stale stale bot added the wontfix This will not be worked on label Mar 4, 2024
@stale stale bot closed this Mar 12, 2024
@riccardoperra riccardoperra reopened this Apr 15, 2024
@stale stale bot removed the wontfix This will not be worked on label Apr 15, 2024
@riccardoperra riccardoperra changed the base branch from main to feat/git-diff-mode-syntax-highlight April 21, 2024 09:00
@riccardoperra riccardoperra changed the base branch from feat/git-diff-mode-syntax-highlight to main April 21, 2024 09:01
@oleksandr-vonahi
Copy link

@gooroodev review please

@gooroodev
Copy link

Appreciate your call, @oleksandr-vonahi!

Issue Counts

🐞Mistake 🤪Typo 🚨Security 🚀Performance 💪Best Practices 📖Readability ❓Others
2 0 0 1 2 3 0

Summary of Proposed Changes

  • ➕ Added diff mode feature to the editor.
  • ➕ Introduced DiffCheckbox and DiffCheckboxMarker components for marking lines as added, removed, or untouched.
  • ➕ Added diff state management using StateField and StateEffect.
  • ➕ Added customEffectAnnotation for custom transaction annotations.
  • ➕ Introduced new language support for git-patch.
  • ➕ Added a debug preview mode in the footer for development.
  • ➕ Added diffMarkerControl and diffMarkerStateIconGutter extensions for diff mode.
  • ➕ Added new styles for diff mode and debug preview.
  • 🛠️ Updated EditorState to include metadata for diff lines.
  • 🛠️ Updated EditorStyleForm to include a checkbox for toggling diff mode.
  • 🛠️ Updated PreviewExportEditor to handle syncing transactions.
  • 🚀 Improved performance by batching transaction syncs in PreviewExportEditor.
  • 📖 Added comments and improved readability in various parts of the code.

Identified Issues

ID Type Details Severity Confidence
1 🐞Mistake Potential memory leak in DiffCheckboxMarker due to untracked disposal 🟠Medium 🟠Medium
2 🐞Mistake Unnecessary state updates in CanvasEditor 🟠Medium 🟠Medium
3 🚀Performance Inefficient transaction handling in PreviewExportEditor 🟠Medium 🟠Medium
4 💪Best Practices Magic strings used for annotation events 🟠Medium 🟠Medium
5 💪Best Practices Hardcoded colors in styles 🟠Medium 🟠Medium
6 📖Readability Lack of comments explaining complex logic 🟠Medium 🟠Medium
7 📖Readability Long function bodies without clear separation of concerns 🟠Medium 🟠Medium
8 📖Readability Inconsistent naming conventions 🟠Medium 🟠Medium

Issue Details and Fixes

Issue 1: Potential memory leak in DiffCheckboxMarker due to untracked disposal

Details: The dispose function in DiffCheckboxMarker is not guaranteed to be called, leading to potential memory leaks.

Fix:

import { onCleanup } from 'solid-js';

// Inside DiffCheckboxMarker class
toDOM(view: EditorView): Node {
  return createRoot(dispose => {
    this.dispose = dispose;
    onCleanup(() => this.dispose?.());

    const [value, setValue] = createSignal<DiffCheckboxState>('untouched');

    const unsubscribe = diffPluginEvents.on('syncLine', ({state, line}) => {
      if (line.number === this.lineNumber) {
        setValue(state ?? 'untouched');
      }
    });

    onCleanup(() => unsubscribe());

    return (
      <div class={container}>
        <DiffCheckbox
          value={value()}
          onChange={state =>
            dispatchUpdateDiffLineState(view, this.lineNumber, state)
          }
        />
      </div>
    );
  }) as Node;
}

Explanation: Added onCleanup to ensure the dispose function is called when the component is destroyed.

Issue 2: Unnecessary state updates in CanvasEditor

Details: The createEffect in CanvasEditor updates the state even when there are no changes.

Fix:

createEffect(
  on(
    () => editorState.options.focused,
    isFocused => {
      if (view && !view.hasFocus && isFocused) {
        editorSetFocused(true);
      }
    },
    { defer: true },
  ),
);

Explanation: Added { defer: true } to the on function to defer the effect until necessary.

Issue 3: Inefficient transaction handling in PreviewExportEditor

Details: Transactions are handled individually, leading to performance issues.

Fix:

let unsubscribe: VoidFunction;
createEffect(
  on(editorView, editorView => {
    if (unsubscribe) unsubscribe();
    if (!editorView) return;

    transactions.value().forEach(transaction => {
      sync(transaction, editorView);
      transactions.setValue(trs => trs.filter(tr => tr !== transaction));
    });

    unsubscribe = transactions.listen(({ event: transaction, remove }) => {
      sync(transaction, editorView);
      remove();
    });
  }),
);

Explanation: Batched transaction handling to improve performance.

Issue 4: Magic strings used for annotation events

Details: Magic strings are used for annotation events, which can lead to errors.

Fix:

const INIT_METADATA_ANNOTATION_EVENT = 'init-metadata';

Explanation: Defined a constant for the annotation event to avoid magic strings.

Issue 5: Hardcoded colors in styles

Details: Colors are hardcoded in styles, making them difficult to maintain.

Fix:

import { themeTokens } from '@codeui/kit';

export const colors = {
  removeLine: themeTokens.colors.red[500],
  removeToken: themeTokens.colors.red[700],
  addLine: themeTokens.colors.green[500],
  addToken: themeTokens.colors.green[700],
};

Explanation: Used theme tokens for colors to improve maintainability.

Issue 6: Lack of comments explaining complex logic

Details: Complex logic is not explained with comments, making it difficult to understand.

Fix: Add comments explaining the logic in complex functions.

Issue 7: Long function bodies without clear separation of concerns

Details: Long function bodies make it difficult to understand the code.

Fix: Refactor long functions into smaller, more manageable functions.

Issue 8: Inconsistent naming conventions

Details: Naming conventions are inconsistent, leading to confusion.

Fix: Standardize naming conventions across the codebase.

General Review

The code introduces a significant new feature with diff mode and handles state management and UI updates effectively. However, there are some areas where best practices and readability can be improved. Specifically, the code can benefit from better separation of concerns, more consistent naming conventions, and avoiding magic strings. Additionally, performance improvements can be made by batching transaction handling. Overall, the code quality is good, but addressing the identified issues will make it more maintainable and performant.

--
I only arrive when I am mentioned and asked to review the pull request.
Your thoughts matter! Please react or reply.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

🚀 - Diff style
3 participants